Buscar Limites de Uso
Este endpoint retornará todos os limites de uso de transações vinculados à sua conta
Headers
Name | Description |
---|---|
x-delbank-api-key | Obrigatório. API key |
x-delfinance-account-id | Obrigatório. O número da conta Delfinance. |
Request
- URL
- cURL
GET 'https://apisandbox.delbank.com.br/baas/api/v1/usage-limits'
curl --location 'https://apisandbox.delbank.com.br/baas/api/v1/usage-limits' \
--header 'x-delbank-api-key: {{apiKey}}'
--header 'x-delfinance-account-id: {{accountId}}' \
Response
Caso a resposta seja bem-sucedida, veja o que você receberá:
[
{
"serviceType": {
"name": "DEBIT",
"description": "Limite Geral (Débito)"
},
"limits": [
{
"limitType": {
"name": "MONTHLY_TOTAL",
"description": "Limite mensal total"
},
"maximunAmount": 20909090909090.70,
"definedAmount": 20909090909090.70
}
]
},
{
"serviceType": {
"name": "PAYMENT",
"description": "Limite de pagamentos (boletos e tributos)"
},
"limits": [
{
"limitType": {
"name": "DAYTIME_TOTAL",
"description": "Limite diurno total"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
},
{
"limitType": {
"name": "DAYTIME_TRANSACTIONAL",
"description": "Limite diurno por transação"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
}
]
},
{
"serviceType": {
"name": "TRANSFER_INTERNAL",
"description": "Limite de transferência interna"
},
"limits": [
{
"limitType": {
"name": "DAYTIME_TOTAL",
"description": "Limite diurno total"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
},
{
"limitType": {
"name": "DAYTIME_TRANSACTIONAL",
"description": "Limite diurno por transação"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
}
]
},
{
"serviceType": {
"name": "TRANSFER_EXTERNAL",
"description": "Limite de transferências TED para outras contas"
},
"limits": [
{
"limitType": {
"name": "DAYTIME_TOTAL",
"description": "Limite diurno total"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
},
{
"limitType": {
"name": "DAYTIME_TRANSACTIONAL",
"description": "Limite diurno por transação"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
}
]
},
{
"serviceType": {
"name": "PIX",
"description": "Limite de transferências PIX para outras contas"
},
"limits": [
{
"limitType": {
"name": "DAYTIME_TOTAL",
"description": "Limite diurno total"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
},
{
"limitType": {
"name": "NIGHTTIME_TOTAL",
"description": "Limite noturno total"
},
"maximunAmount": 1000.00,
"definedAmount": 1000.00
},
{
"limitType": {
"name": "DAYTIME_TRANSACTIONAL",
"description": "Limite diurno por transação"
},
"maximunAmount": 696969696969.69,
"definedAmount": 696969696969.69
},
{
"limitType": {
"name": "NIGHTTIME_TRANSACTION",
"description": "Limite noturno por transação"
},
"maximunAmount": 1000.00,
"definedAmount": 999.00,
"raiseRequest": {
"status": "PENDING_ANALYSIS",
"amount": 2000.00
}
}
]
}
]